home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Creative Review 34
/
Creative-Review-CD-ROM-34.iso
/
pc
/
jkd
/
folio
/
scripts.cst
/
00034_Script_Live Button
< prev
Wrap
Text File
|
1998-01-26
|
677b
|
34 lines
on mouseEnter
global imageBar
if (getAt(the selectedImage of imageBar,6) <> "-") then
global liveButton
overButton liveButton
updateStage
end if
end
on mouseDown
global imageBar
if (getAt(the selectedImage of imageBar,6) <> "-") then
global liveButton
downButton liveButton
updateStage
end if
end
on mouseUp
global imagebar
if (getAt(the selectedImage of imageBar,6) <> "-") then
global liveButton
overButton liveButton
updateStage
gotoNetPage getAt(the selectedImage of imageBar,6), "jkdwork"
end if
end
on mouseLeave
global liveButton
normalButton liveButton
updateStage
end